/* #74b9ff couleur de fond bleu claire
   #2980b9 couleur de fond bleu foncé  */

*{
    margin:0px;
    padding:0px;
}

:root{
    --couleur-principal: #74b9ff;
    --couleur-secondaire:  #2980b9;
    --couleur-voyante: yellow; 
    --marge-10: ;
    --font-style-titre: ;
    }
    


body{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--couleur-principal);
 
}
/*-------------------------menu principal------------------*/
nav{
  width: 100%;
 
}

  
nav input[type=checkbox]{
    display: none;
}
nav label{
    display: inline-block;
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    background-color: var(--couleur-secondaire);
    color: white;
    border: 1px solid white;
}
nav ul{
    display: none;
    list-style-type: none;
    background-color: var(--couleur-secondaire);
    border-bottom: 1px solid white;
    border-top: 1px solid white;
    
}
nav input[type=checkbox]:checked + ul{
    display: flex;
    flex-flow : column wrap;
}
nav ul li{
    flex: 1 1 auto;
    text-align: center;
}
nav > div > ul > li > a{
    color: white;
}
nav a{
    display: block;
    text-decoration: none;
    color: black;
    padding: 10px 0px;
}
.sous{
    display: flex;
    flex-flow: column wrap;
    z-index: 1000;
    
    
}

.sous li{
    flex: 1 1 auto;
    text-align: left;
}
.sous a{
    padding: 10px;
    background-color: var(--couleur-principal);
    
    
}

.li3{
  border-bottom: 0.5px solid var(--couleur-secondaire);
  border-top: 0.5px solid var(--couleur-secondaire);
  
}
.li31{
  border-bottom: 0.5px solid var(--couleur-secondaire);
 
  
}
.li32{
  
  border-top: 0.5px solid var(--couleur-secondaire);
  
}
.li4{
   border-bottom: 0.5px solid var(--couleur-secondaire);
   border-top: 0.5px solid var(--couleur-secondaire);
  
}
.li41{
  border-bottom: 0.5px solid var(--couleur-secondaire);
 
  
}
.li42{
  
  border-top: 0.5px solid var(--couleur-secondaire);
  
}

.li5{
  border-bottom: 0.5px solid white;
  
  
}
.li6{
   border-bottom: 0.5px solid white;  
  
}

.a1{
    color: white;
    font-weight: bold;}

/*-------------------------logo-----------------------------*/  



#logo{
    
    background-color: var(--couleur-principal);
    position: relative;
    margin-top: 10%;
    margin-bottom: 5%;
    width: 120px;
    height: 120px;
}

#logo span{
    position: absolute;
    display: block;
    background: var(--couleur-principal);
    animation: animate 12s ease-in-out infinite;
    
}

@keyframes animate{
    0%{
        transform: rotate(0deg);
    }
     50%{
        transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }
}

#logo span:nth-child(even){
    background: rgba(41,128,185,0.8);
    
}



#logo span:nth-child(even):before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--couleur-principal);
    transform: translatey(-50%);
}

#logo span:nth-child(even):after{
    content: "";
    position: absolute;
    top: 0%;
    left: 50%;
    width: 50%;
    height: 100%;
    background: var(--couleur-principal);
    transform: translatex(-50%);
}


#logo span:nth-child(1){
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation-delay: 0.9s;
}
#logo span:nth-child(2){
    top: 6%;
    left: 6%;
    right: 6%;
    bottom: 6%;
    animation-delay: 0.8s;
}

#logo span:nth-child(3){
    top: 12%;
    left: 12%;
    right: 12%;
    bottom: 12%;
    animation-delay: 0.7s;
}

#logo span:nth-child(4){
    top: 17%;
    left: 17%;
    right: 17%;
    bottom: 17%;
    animation-delay: 0.6s;
}

#logo span:nth-child(5){
    top: 23%;
    left: 23%;
    right: 23%;
    bottom: 23%;
    animation-delay: 0.5s;
}
#logo span:nth-child(6){
    top: 29%;
    left: 29%;
    right: 29%;
    bottom: 29%;
    animation-delay: 0.4s;
}

#logo span:nth-child(7){
    top: 35%;
    left: 35%;
    right: 35%;
    bottom: 35%;
    animation-delay: 0.3s;
}

#logo span:nth-child(8){
    top: 41%;
    left: 41%;
    right: 41%;
    bottom: 41%;
    animation-delay: 0.2s;
}
#logo span:nth-child(9){
    top: 47%;
    left: 47%;
    right: 47%;
    bottom: 47%;
    animation-delay: 0.1s;
}

/*-----------------------titre------------------------------*/
#titre{
  width: 95%;
  
 
  margin-top: 2.5%;
  margin-bottom: 2.5%;
}


.ul1{
   
    color: var(--couleur-secondaire);
    list-style-type: none;
    display: flex;
    justify-content: center;
      
    
}

.ul1 li{
    font-family: Monoton , "Comic sans MS",cursive;
    font-size: 25px;
    letter-spacing: ;
    animation: flash 2.5s linear infinite;
    
    
}

@keyframes flash{
    0% {
        color: var(--couleur-secondaire);
        text-shadow: none;
    }
  
    
    90% {
        color: var(--couleur-secondaire);
        text-shadow: none;
    }
     100% {
        color: white;
        text-shadow: 0 0 7px white, 0 0 50px white;
    }
}

.ul1 li :nth-child(1){
    animation-delay: .1s
}
.ul1 li:nth-child(2){
    animation-delay:0.2s
}
.ul1 li:nth-child(3){
    animation-delay:0.3s
}
.ul1 li:nth-child(4){
    animation-delay:0.4s
}
.ul1 li:nth-child(5){
    animation-delay:0.5s
}
.ul1 li:nth-child(6){
    animation-delay:0.6s
}
.ul1 li:nth-child(7){
    animation-delay:0.7s
}
.ul1 li:nth-child(8){
    animation-delay:0.8s
}
.ul1 li:nth-child(9){
    animation-delay:0.9s
}
.ul1 li:nth-child(10){
    animation-delay:1s
}
.ul1 li:nth-child(11){
    animation-delay:1.1s
}
.ul1 li:nth-child(12){
    animation-delay:1.2s
}
.ul1 li:nth-child(13){
    animation-delay:1.3s
}
.ul1 li:nth-child(14){
    animation-delay:1.4s
}
.ul1 li:nth-child(15){
    animation-delay:1.5s
}
.ul1 li:nth-child(16){
    animation-delay:1.6s
}

/*----------------------contenu1-----------------------------*/

   
.swiper-container {
      width: 200px;
      height: 330px;
      
      margin-top: 2.5%;
      margin-bottom: 2.5%;
       
    }
    
.swiper-slide {
      background-position: center;
      background-size: cover;
      background-color: var(--couleur-secondaire);
    }
    
.swiper-slide .imgBx{
 
 width: 100%;
 height: 240px;
 overflow: hidden;
 
}

.swiper-slide .imgBx img{
 width: 100%;
 
}

.swiper-slide .details{
 box-sizing: border-box;
 padding: 20px;
 
}

.swiper-slide .details h3{
margin: 0;
padding: 0;

}
/*-----------slide1------------------*/

.aa1{
 text-decoration: none;

}
#h31{
  font-size: 20px;
  font-weight: bold;
  color: white;
  text-align: center;
  line-height: 30px;
  
}
#h31 span{
  color: var(--couleur-voyante);
}


/*-----------slide2------------------*/


#h32{
  font-size: 19px;
  font-weight: bold;
  color: white;
  text-align: center;
  line-height: 23px;
  
}
#h32 span{
  color: var(--couleur-voyante);
}

/*---------------------contenu2-------------------------------*/
#particles-js{
  width: 100%;
  height: 2000px;
  margin-top: 2.5%;
  margin-bottom: 2.5%;
  background: linear-gradient(180deg, var(--couleur-secondaire), var(--couleur-principal) );
  overflow: hidden;
}



#particles-js input[type=checkbox]{
    display: none;
}
#particles-js label{
    display: inline-block;
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    background-color: var(--couleur-secondaire);
    color: white;
    border: 1px solid white;
}


#particles-js #contenu{
    display: none;
     
}
#particles-js input[type=checkbox]:checked + #contenu{
    display: flex;
    
}

#contenu{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
  margin-left: 5%;
  position: absolute;
 
  
}

h1{
  margin-top: 5%;
  font-size: 35px;
  text-align: center;
  text-shadow: -5px 2px 1px RGBa(0,0,160,0.3);
  color: white;
}



h1 span{
  font-size: 75px;
  text-shadow: -5px 2px 1px RGBa(0,0,160,0.3), 0px 0px 10px RGBa(160,0,0,0.8);
}

.img1{
  width: 100%;
  height: auto;
  
  
}

p{
  color: white;
  font-size: 20px;
}

